.hero {
  background-image: url("./hero.jpg");
}

.hero-main-title,
.hero-tagline {
  background-color: #fbf4eb;
  padding: 12px !important;
}

.fruits_veg {
  background-image: url("./fruits.jpg");
  background-size: cover;
  background-position: center;
}

.dry_goods {
  background-image: url("./drygoods.jpg");
  background-size: cover;
  background-position: center;
}

.fresh_baked {
  background-image: url("./fresh_baked.jpg");
  background-size: cover;
  background-position: center;
}

/* Interested Button */
.interest-button {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  border: none;
  border-radius: 50px;
  padding: 8px 16px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  cursor: pointer;
  animation: fastZoomBlink 1.2s infinite;
}

.interest-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
  animation-play-state: paused;
}

.interest-button:active {
  transform: translateY(0);
}

.interest-button .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.interest-button:hover .icon {
  transform: scale(1.1);
}

.interest-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.interest-button:hover::before {
  left: 100%;
}

@keyframes fastZoomBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}

.button-container {
  position: relative;
  display: inline-block;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #f8f9fa;
  padding: 8px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.carousel-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  width: 33.333%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, #fbf4eb 0%, #ffca84 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: 600;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Caption Styles - CENTERED */
.caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fbf4eb !important;
  z-index: 5;
  background: rgba(0, 0, 0, 0.2);
  padding: 30px 40px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  max-width: 80%;
}

.caption h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 15px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
  color: #fbf4eb !important;
}

.caption p {
  font-size: 1.2rem;
  margin: 0;
  opacity: 0.95;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
  line-height: 1.4;
}

.slide-placeholder {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  padding: 2rem;
}
.slide-placeholder:nth-child(2) {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}
.slide-placeholder:nth-child(3) {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.indicator.active {
  background: white;
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.hero-section:hover .carousel-nav {
  opacity: 1;
  pointer-events: all;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

.content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 3rem 2rem 2rem;
  z-index: 5;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  font-weight: 400;
  max-width: 600px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    height: 280px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .content-overlay {
    padding: 2rem 1.5rem 1.5rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .slide-placeholder {
    font-size: 1.2rem;
    padding: 1rem;
  }

  /* Responsive Caption Styles */
  .caption {
    padding: 20px 25px;
    max-width: 90%;
  }
  .caption h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .caption p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 250px;
  }
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .hero-subtitle {
    font-size: 0.9rem;
  }
  .content-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  .carousel-nav.prev {
    left: 10px;
  }
  .carousel-nav.next {
    right: 10px;
  }
  .carousel-indicators {
    bottom: 15px;
    gap: 8px;
  }
  .indicator {
    width: 10px;
    height: 10px;
  }

  /* Mobile Caption Styles */
  .caption {
    padding: 15px 20px;
    max-width: 95%;
  }
  .caption h1 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  .caption p {
    font-size: 0.9rem;
  }
}

/* Loading animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-section {
  animation: slideIn 0.8s ease-out;
}

/* Below Hero Section */
.features-section {
  padding: 60px 20px;
  background: #fad5ba;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.icon-wrapper {
  width: 80px;
  height: 80px;
  background: #ed6225;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.3s ease;
}
.feature-card:hover .icon-wrapper {
  transform: scale(1.1);
}
.icon-wrapper svg {
  width: 40px;
  height: 40px;
}
.icon-wrapper svg .cls-1 {
  fill: white;
}
.feature-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}
.feature-description {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.cta-section {
  text-align: center;
  margin-top: 50px;
}
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: #ed6225;
  color: white;
  text-decoration: none;
  border-radius: 400px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.cta-button:hover {
  background: #d55520;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .features-section {
    padding: 40px 15px;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .feature-card {
    padding: 30px 20px;
  }
  .icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  .icon-wrapper svg {
    width: 35px;
    height: 35px;
  }
  .feature-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .feature-description {
    font-size: 13px;
  }
  .cta-button {
    padding: 14px 25px;
    font-size: 16px;
  }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .feature-card {
    padding: 35px 25px;
  }
}

/* Large Screen */
@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.as-seen-in {
  text-align: center;
  margin-bottom: 40px;
}
.as-seen-in h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}
.media-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.media-logos img {
  max-height: 50px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.dd {
  max-height: 80px !important;
  width: 100px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.media-logos img:hover {
  opacity: 1;
}

/* Indlak Section */
.indlak-section {
  text-align: center;
  margin-bottom: 60px;
}
.indlak-section img {
  max-width: 200px !important;
  margin-bottom: 15px;
}
.indlak-section h2 {
  font-size: 1.5rem;
  color: #333;
}
.indlak-section a {
  text-decoration: none;
  color: #333;
}
.indlak-section a:hover {
  color: #4caf50;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  .as-seen-in h2 {
    font-size: 2rem;
  }
  .media-logos {
    justify-content: center;
    gap: 15px;
  }
  .media-logos img {
    max-height: 40px;
  }
  .dd {
    max-height: 60px;
  }
}
@media (max-width: 480px) {
  .main-section {
    padding: 40px 0;
  }
  .as-seen-in h2 {
    font-size: 1.8rem;
  }
}

/* Additional responsive adjustments for media logos */
@media (max-width: 600px) {
  .media-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    justify-items: center;
  }
}
@media (max-width: 400px) {
  .media-logos {
    grid-template-columns: 1fr;
  }
}

.food_categories_container_xyz {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: "Arial", sans-serif;
}
.food_grid_wrapper_xyz {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.food_grid_bottom_xyz {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.food_category_card_xyz {
  position: relative;
  min-height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.food_category_card_xyz:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.food_category_card_xyz::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.food_card_content_xyz {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  color: white;
  z-index: 2;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.food_card_title_xyz {
  font-size: 4.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  color: #fff !important;
}
.food_card_subtitle_xyz {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Category specific backgrounds and colors */
.fruits_vegetables_xyz {
  background-image: url("./fruits.jpg");
}
.dry_goods_xyz {
  background-image: url("./drygoods.jpg");
}
.fresh_baked_xyz {
  background-image: url("./fresh_baked.jpg");
}

/* Responsive Design */
@media (max-width: 768px) {
  .food_categories_container_xyz {
    padding: 15px;
  }
  .food_grid_bottom_xyz {
    grid-template-columns: 1fr;
  }
  .food_category_card_xyz {
    min-height: 250px;
  }
  .food_card_title_xyz {
    font-size: 1.8rem;
  }
  .food_card_content_xyz {
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .food_categories_container_xyz {
    padding: 10px;
  }
  .food_grid_wrapper_xyz,
  .food_grid_bottom_xyz {
    gap: 15px;
  }
  .food_category_card_xyz {
    min-height: 220px;
  }
  .food_card_title_xyz {
    font-size: 1.5rem;
  }
  .food_card_content_xyz {
    padding: 20px 15px;
  }
  .food_card_subtitle_xyz {
    font-size: 0.9rem;
  }
}

/* Accessibility and Focus States */
.food_category_card_xyz:focus {
  outline: 3px solid #007acc;
  outline-offset: 2px;
}
.food_category_card_xyz:focus:not(:focus-visible) {
  outline: none;
}

/* Animation for better UX */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.food_category_card_xyz {
  animation: fadeInUp 0.6s ease forwards;
}
.food_category_card_xyz:nth-child(2) {
  animation-delay: 0.1s;
}
.food_category_card_xyz:nth-child(3) {
  animation-delay: 0.2s;
}
